Skip to content

Conversation

@dependabot
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Nov 3, 2025

Bumps the vite group with 13 updates:

Package From To
@julr/vite-plugin-validate-env 1.3.0 2.2.0
@vitejs/plugin-react-swc 3.8.0 4.2.0
@vitest/coverage-v8 1.6.1 4.0.6
vite 5.4.14 7.1.12
vite-plugin-checker 0.7.2 0.11.0
vite-plugin-compression2 0.11.0 2.3.1
vite-plugin-radar 0.9.6 0.10.1
vite-plugin-svgr 4.3.0 4.5.0
vite-tsconfig-paths 4.3.2 5.1.4
vitest 1.6.1 4.0.6
vite-plugin-dts 3.9.1 4.5.4
vite-plugin-lib-inject-css 1.3.0 2.2.2
@storybook/react-vite 8.5.8 10.0.3

Updates @julr/vite-plugin-validate-env from 1.3.0 to 2.2.0

Release notes

Sourced from @​julr/vite-plugin-validate-env's releases.

v2.2.0

Changes

  • Add support for Vite 7
    View changes on GitHub

v2.1.0

   🚀 Features

   🐞 Bug Fixes

    View changes on GitHub

v2.0.0

   🚨 Breaking Changes

    View changes on GitHub
Commits
  • 6309794 chore: release v2.2.0
  • 4ba3ad8 chore: update dependencies and accept vite 7 as peer deps
  • a3ea9c1 docs: fix missing validator and schema in env.ts example (#42)
  • 7f82fe1 docs: fix TypeScript declaration filename to match Vite conventions (#43)
  • 0bf9d7a chore: release v2.1.0
  • b5b0e98 chore: update dependencies
  • 47026f1 feat: expose function for validation without running Vite (#36)
  • 15d4300 fix: include @standard-schema/spec as a dependency (#38)
  • db7de67 docs: recommend strictImportMetaEnv
  • cfa9502 chore: release v2.0.0
  • Additional commits viewable in compare view

Updates @vitejs/plugin-react-swc from 3.8.0 to 4.2.0

Release notes

Sourced from @​vitejs/plugin-react-swc's releases.

[email protected]

Update peer dependency range to target Vite 5

There were no breaking change that impacted this plugin, so any combination of React plugins and Vite core version will work.

Align jsx runtime for optimized dependencies

This will only affect people using internal libraries that contains untranspiled JSX. This change aligns the optimizer with the source code and avoid issues when the published source don't have React in the scope.

Reminder: While being partially supported in Vite, publishing TS & JSX outside of internal libraries is highly discouraged.

[email protected]

Add @vitejs/plugin-react-swc/preamble virtual module for SSR HMR (#890)

SSR applications can now initialize HMR runtime by importing @vitejs/plugin-react-swc/preamble at the top of their client entry instead of manually calling transformIndexHtml. This simplifies SSR setup for applications that don't use the transformIndexHtml API.

Use SWC when useAtYourOwnRisk_mutateSwcOptions is provided (#951)

Previously, this plugin did not use SWC if plugins were not provided even if useAtYourOwnRisk_mutateSwcOptions was provided. This is now fixed.

[email protected]

  • Enable retainLines to get correct line numbers for jsxDev (fix #235)

[email protected]

  • Add @types/babel__cores to dependencies (fix #211)
  • Improve build perf when not using Babel plugins by lazy loading @babel/core #212
  • Better invalidation message when an export is added & fix HMR for export of nullish values #215
  • Include non-dev jsx runtime in optimizeDeps & support HMR for JS files using the non dev runtime #224
  • The build output now contains a index.d.cts file so you don't get types errors when setting moduleResolution to node16 or nodenext in your tsconfig (we recommend using bundler which is more close to how Vite works)

[email protected]

Set SWC cacheRoot options

This is set to {viteCacheDir}/swc and override the default of .swc.

Perf: simplify refresh wrapper generation (#835)

[email protected]

  • Fix #198: Enable Babel if presets list is not empty

[email protected]

  • Revert #108: Remove throw when refresh runtime is loaded twice to enable usage in micro frontend apps. This was added to help fix setup usage, and this is not worth an annoying warning for others or a config parameter.

[email protected]

  • Fix fast-refresh for files that are transformed into jsx (#188)

[email protected]

... (truncated)

Changelog

Sourced from @​vitejs/plugin-react-swc's changelog.

4.2.0 (2025-10-24)

Add @vitejs/plugin-react-swc/preamble virtual module for SSR HMR (#890)

SSR applications can now initialize HMR runtime by importing @vitejs/plugin-react-swc/preamble at the top of their client entry instead of manually calling transformIndexHtml. This simplifies SSR setup for applications that don't use the transformIndexHtml API.

Use SWC when useAtYourOwnRisk_mutateSwcOptions is provided (#951)

Previously, this plugin did not use SWC if plugins were not provided even if useAtYourOwnRisk_mutateSwcOptions was provided. This is now fixed.

4.1.0 (2025-09-17)

Set SWC cacheRoot options

This is set to {viteCacheDir}/swc and override the default of .swc.

Perf: simplify refresh wrapper generation (#835)

4.0.1 (2025-08-19)

Set optimizeDeps.rollupOptions.transform.jsx instead of optimizeDeps.rollupOptions.jsx for rolldown-vite (#735)

optimizeDeps.rollupOptions.jsx is going to be deprecated in favor of optimizeDeps.rollupOptions.transform.jsx.

4.0.0 (2025-08-07)

4.0.0-beta.0 (2025-07-28)

Require Node 20.19+, 22.12+

This plugin now requires Node 20.19+ or 22.12+.

3.11.0 (2025-07-18)

Add HMR support for compound components (#518)

HMR now works for compound components like this:

const Root = () => <div>Accordion Root</div>
const Item = () => <div>Accordion Item</div>
export const Accordion = { Root, Item }

Return Plugin[] instead of PluginOption[] (#537)

The return type has changed from react(): PluginOption[] to more specialized type react(): Plugin[]. This allows for type-safe manipulation of plugins, for example:

</tr></table> 

... (truncated)

Commits
Maintainer changes

This version was pushed to npm by [GitHub Actions](https://www.npmjs.com/~GitHub Actions), a new releaser for @​vitejs/plugin-react-swc since your current version.


Updates @vitest/coverage-v8 from 1.6.1 to 4.0.6

Release notes

Sourced from @​vitest/coverage-v8's releases.

v4.0.6

   🐞 Bug Fixes

    View changes on GitHub

v4.0.5

   🐞 Bug Fixes

   🏎 Performance

    View changes on GitHub

v4.0.4

   🐞 Bug Fixes

... (truncated)

Commits
  • 2e7b2b8 chore: release v4.0.6
  • e3b7775 fix(coverage): prevent filtering out virtual files before remapping to source...
  • ed9fc71 chore: release v4.0.5
  • 9b75ec5 chore: release v4.0.4
  • ca1766f chore: release v4.0.3
  • 07bc56a chore: release v4.0.2
  • 4a28faa chore: release v4.0.1
  • da7ce17 chore: release v4.0.0
  • 3e4b6b7 chore: release v4.0.0-beta.19
  • 35816fe fix(coverage): v8 to ignore Vite's generated cjs import helpers (#8718)
  • Additional commits viewable in compare view
Maintainer changes

This version was pushed to npm by [GitHub Actions](https://www.npmjs.com/~GitHub Actions), a new releaser for @​vitest/coverage-v8 since your current version.


Updates vite from 5.4.14 to 7.1.12

Release notes

Sourced from vite's releases.

v7.1.12

Please refer to CHANGELOG.md for details.

v7.1.11

Please refer to CHANGELOG.md for details.

v7.1.10

Please refer to CHANGELOG.md for details.

v7.1.9

Please refer to CHANGELOG.md for details.

v7.1.8

Please refer to CHANGELOG.md for details.

v7.1.7

Please refer to CHANGELOG.md for details.

v7.1.6

Please refer to CHANGELOG.md for details.

v7.1.5

Please refer to CHANGELOG.md for details.

v7.1.4

Please refer to CHANGELOG.md for details.

v7.1.3

Please refer to CHANGELOG.md for details.

[email protected]

Please refer to CHANGELOG.md for details.

v7.1.2

Please refer to CHANGELOG.md for details.

[email protected]

Please refer to CHANGELOG.md for details.

v7.1.1

Please refer to CHANGELOG.md for details.

[email protected]

Please refer to CHANGELOG.md for details.

[email protected]

Please refer to CHANGELOG.md for details.

[email protected]

Please refer to CHANGELOG.md for details.

... (truncated)

Changelog

Sourced from vite's changelog.

7.1.12 (2025-10-23)

Bug Fixes

  • deps: downgrade commonjs plugin to 28.0.6 to avoid rollup/plugins#1909 (#20990) (56fd722)

7.1.11 (2025-10-20)

Bug Fixes

  • dev: trim trailing slash before server.fs.deny check (#20968) (f479cc5)

Miscellaneous Chores

Code Refactoring

  • use subpath imports for types module reference (#20921) (d0094af)

Build System

7.1.10 (2025-10-14)

Bug Fixes

  • css: avoid duplicate style for server rendered stylesheet link and client inline style during dev (#20767) (3a92bc7)
  • css: respect emitAssets when cssCodeSplit=false (#20883) (d3e7eee)
  • deps: update all non-major dependencies (879de86)
  • deps: update all non-major dependencies (#20894) (3213f90)
  • dev: allow aliases starting with // (#20760) (b95fa2a)
  • dev: remove timestamp query consistently (#20887) (6537d15)
  • esbuild: inject esbuild helpers correctly for esbuild 0.25.9+ (#20906) (446eb38)
  • normalize path before calling fileToBuiltUrl (#20898) (73b6d24)
  • preserve original sourcemap file field when combining sourcemaps (#20926) (c714776)

Documentation

Miscellaneous Chores

7.1.9 (2025-10-03)

Reverts

7.1.8 (2025-10-02)

... (truncated)

Commits
Maintainer changes

This version was pushed to npm by [GitHub Actions](https://www.npmjs.com/~GitHub Actions), a new releaser for vite since your current version.


Updates vite-plugin-checker from 0.7.2 to 0.11.0

Release notes

Sourced from vite-plugin-checker's releases.

[email protected]

   🚨 Breaking Changes

   🚀 Features

   🐞 Bug Fixes

    View changes on GitHub

[email protected]

   🐞 Bug Fixes

    View changes on GitHub

[email protected]

   🐞 Bug Fixes

    View changes on GitHub

[email protected]

   🐞 Bug Fixes

    View changes on GitHub

[email protected]

No significant changes

    View changes on GitHub

[email protected]

   🐞 Bug Fixes

... (truncated)

Commits
  • 44a86f7 v0.11.0
  • d22d54a chore: remove in-source changelogs
  • baf7152 ci: use trusted publishing
  • bac91cf fix: address merge conflict with strip-ansi
  • 66a10dc perf!: use node built-in instead of strip-ansi (#588)
  • 61408e7 feat(oxlint): add support for oxlint (#578)
  • 5ddc18c fix(deps): update dependency strip-ansi to ^7.1.2 (#587)
  • bfc6118 chore(deps): update dependency @​tsconfig/strictest to ^2.0.6 (#586)
  • fd3443a chore(deps): update dependency vite to v5 [security] (#585)
  • 9158f8f chore(deps): update dependency publint to ^0.3.13 (#584)
  • Additional commits viewable in compare view
Maintainer changes

This version was pushed to npm by [GitHub Actions](https://www.npmjs.com/~GitHub Actions), a new releaser for vite-plugin-checker since your current version.


Updates vite-plugin-compression2 from 0.11.0 to 2.3.1

Release notes

Sourced from vite-plugin-compression2's releases.

v2.3.1

  • Fixed where it didn't work with vite manifest plugin.

v2.3.0

  • Add new option artifacts.

v2.2.1

  • Enhanced algorithms option to accept alias strings in array format.
  • Add new option logLevel to control log in stdout.

v2.2.0

  • Add compression algorithm aliases.
  • The correct variable should be passed when using custom filename.

Credits

@​solonovamax

v2.1.0

  • Add zstd support. (Use the built-in zstd of nodejs. Note that you need to ensure your local node version)

v2.0.1

  • Fix build script.

v2.0.0

Major Changes

  • Changed algorithm option to algorithms (array support)
  • Removed compressionOptions in favor of new defineAlgorithm() helper
  • Enhanced API for better developer experience

New Features

  • Support for multiple compression algorithms in a single plugin instance
  • New defineAlgorithm() helper for better type-safety and options control
  • Custom compression algorithm support via function callbacks

Improvements

  • Better TypeScript type definitions
  • Simplified configuration for common use cases
  • Added comprehensive migration guide
  • Added Q&A document for common usage patterns

See the Migration Guide for detailed upgrade instructions.

v1.4.0

Added build log output for compression result.

... (truncated)

Changelog

Sourced from vite-plugin-compression2's changelog.

2.3.1

  • Fixed where it didn't work with vite manifest plugin.

2.3.0

  • Add new option artifacts.

2.2.1

  • Enhanced algorithms option to accept alias strings in array format.
  • Add new option logLevel to control log in stdout.

2.2.0

  • Add compression algorithm aliases.
  • The correct variable should be passed when using custom filename.

Credits

@​solonovamax

2.1.0

  • Add zstd support. (Use the built-in zstd of nodejs. Note that you need to ensure your local node version)

2.0.1

  • Fix build script.

2.0.0

Major Changes

  • Changed algorithm option to algorithms (array support)
  • Removed compressionOptions in favor of new defineAlgorithm() helper
  • Enhanced API for better developer experience

New Features

  • Support for multiple compression algorithms in a single plugin instance
  • New defineAlgorithm() helper for better type-safety and options control
  • Custom compression algorithm support via function callbacks

Improvements

  • Better TypeScript type definitions
  • Simplified configuration for common use cases
  • Added comprehensive migration guide
  • Added Q&A document for common usage patterns

... (truncated)

Commits

Updates vite-plugin-radar from 0.9.6 to 0.10.1

Release notes

Sourced from vite-plugin-radar's releases.

v0.10.1

What's Changed

New Contributors

Full Changelog: stafyniaksacha/vite-plugin-radar@v0.10.0...v0.10.1

v0.10.0

Potential breaking changes

  • disable default export, only named export will work
- import VitePluginRadar from 'vite-plugin-radar'
+ import { VitePluginRadar } from 'vite-plugin-radar'

What's Changed

New Contributors

Full Changelog: stafyniaksacha/vite-plugin-radar@v0.9.6...v0.10.0

Changelog

Sourced from vite-plugin-radar's changelog.

0.10.1 (2025-07-22)

Features

Bug Fixes

  • yandex metrika base link changed to a new one (#40) (ac24b89)

0.10.0 (2025-01-17)

⚠ BREAKING CHANGES

  • disable default export

Features

Commits

Updates vite-plugin-svgr from 4.3.0 to 4.5.0

Release notes

Sourced from vite-plugin-svgr's releases.

v4.5.0

No significant changes

    View changes on GitHub
Commits

Updates vite-tsconfig-paths from 4.3.2 to 5.1.4

Release notes

Sourced from vite-tsconfig-paths's releases.

v5.1.4

  • fix: correctly infer the paths root dir (eea1c17d0fe4ad6e3f8bc324216bc09173e3c778) (#150)

v5.1.3

  • fix: Once an importer is matched, end directory traversal (b0d8ecb9b862412e93f73b172cc0692259ce01b8)
  • feat: Add vite-tsconfig-paths:resolve debug logs (7160d6e52673367a7f4766ca9023ddc1da43e5dd)
  • chore: Ensure debug logs can be enabled in vitest (0dc9a8b9b0ec8657f9d6980ac33d0bc090e278ef)

v5.1.2

  • fix Windows regression introduced in v5.1.1 (#162)

v5.1.1

  • support ${configDir} syntax in include/exclude (#156)

v5.1.0

  • Add skip option for adding additional directories to be skipped when searching for tsconfig.json files (#146)
  • Fix path resolution on Windows when other Vite plugins neglect to normalize the importer path before calling this.resolve in their resolveId hooks (#157)
  • Allow both tsconfig.json and jsconfig.json in the same directory (4124b091607503d44b876bb4edd726667b386660)

v5.0.0

This package is now ESM only in order to align with Vite: https://vitejs.dev/guide/migration#deprecate-cjs-node-api

If your project is using CommonJS, you can rename your Vite config to use the .mjs or .mts extension (depending on whether you use TypeScript or not). If you're not using Vite v5.0.0+, you may want to pin your dependency to v4 of this plugin.

Commits
  • f58afbc 5.1.4
  • ece58bf chore: upgrade typescript
  • 593a611 fix: ensure parseNative result is correctly handled
  • eea1c17 fix: correctly infer the paths root dir
  • 34cb651 test: add case for resolving paths from an extended tsconfig (#166)
  • 2d187b9 chore: upgrade vite & vitest
  • a5bb13e chore: stop using yarn in package.json scripts
  • dcb0c9d 5.1.3
  • 16ef4b1 test: ensure root option is set
  • 0dc9a8b chore: ensure debug logs can be enabled in vitest
  • Additional commits viewable in compare view
Description has been truncated

Bumps the vite group with 13 updates:

| Package | From | To |
| --- | --- | --- |
| [@julr/vite-plugin-validate-env](https://github.com/Julien-R44/vite-plugin-validate-env) | `1.3.0` | `2.2.0` |
| [@vitejs/plugin-react-swc](https://github.com/vitejs/vite-plugin-react/tree/HEAD/packages/plugin-react-swc) | `3.8.0` | `4.2.0` |
| [@vitest/coverage-v8](https://github.com/vitest-dev/vitest/tree/HEAD/packages/coverage-v8) | `1.6.1` | `4.0.6` |
| [vite](https://github.com/vitejs/vite/tree/HEAD/packages/vite) | `5.4.14` | `7.1.12` |
| [vite-plugin-checker](https://github.com/fi3ework/vite-plugin-checker) | `0.7.2` | `0.11.0` |
| [vite-plugin-compression2](https://github.com/nonzzz/vite-plugin-compression) | `0.11.0` | `2.3.1` |
| [vite-plugin-radar](https://github.com/stafyniaksacha/vite-plugin-radar) | `0.9.6` | `0.10.1` |
| [vite-plugin-svgr](https://github.com/pd4d10/vite-plugin-svgr) | `4.3.0` | `4.5.0` |
| [vite-tsconfig-paths](https://github.com/aleclarson/vite-tsconfig-paths) | `4.3.2` | `5.1.4` |
| [vitest](https://github.com/vitest-dev/vitest/tree/HEAD/packages/vitest) | `1.6.1` | `4.0.6` |
| [vite-plugin-dts](https://github.com/qmhc/vite-plugin-dts) | `3.9.1` | `4.5.4` |
| [vite-plugin-lib-inject-css](https://github.com/emosheeep/vite-plugin-lib-inject-css) | `1.3.0` | `2.2.2` |
| [@storybook/react-vite](https://github.com/storybookjs/storybook/tree/HEAD/code/frameworks/react-vite) | `8.5.8` | `10.0.3` |


Updates `@julr/vite-plugin-validate-env` from 1.3.0 to 2.2.0
- [Release notes](https://github.com/Julien-R44/vite-plugin-validate-env/releases)
- [Commits](Julien-R44/vite-plugin-validate-env@v1.3.0...v2.2.0)

Updates `@vitejs/plugin-react-swc` from 3.8.0 to 4.2.0
- [Release notes](https://github.com/vitejs/vite-plugin-react/releases)
- [Changelog](https://github.com/vitejs/vite-plugin-react/blob/main/packages/plugin-react-swc/CHANGELOG.md)
- [Commits](https://github.com/vitejs/vite-plugin-react/commits/v4.2.0/packages/plugin-react-swc)

Updates `@vitest/coverage-v8` from 1.6.1 to 4.0.6
- [Release notes](https://github.com/vitest-dev/vitest/releases)
- [Commits](https://github.com/vitest-dev/vitest/commits/v4.0.6/packages/coverage-v8)

Updates `vite` from 5.4.14 to 7.1.12
- [Release notes](https://github.com/vitejs/vite/releases)
- [Changelog](https://github.com/vitejs/vite/blob/v7.1.12/packages/vite/CHANGELOG.md)
- [Commits](https://github.com/vitejs/vite/commits/v7.1.12/packages/vite)

Updates `vite-plugin-checker` from 0.7.2 to 0.11.0
- [Release notes](https://github.com/fi3ework/vite-plugin-checker/releases)
- [Commits](https://github.com/fi3ework/vite-plugin-checker/compare/[email protected]@0.11.0)

Updates `vite-plugin-compression2` from 0.11.0 to 2.3.1
- [Release notes](https://github.com/nonzzz/vite-plugin-compression/releases)
- [Changelog](https://github.com/nonzzz/vite-plugin-compression/blob/master/CHANGELOG.md)
- [Commits](nonzzz/vite-plugin-compression@v0.11.0...v2.3.1)

Updates `vite-plugin-radar` from 0.9.6 to 0.10.1
- [Release notes](https://github.com/stafyniaksacha/vite-plugin-radar/releases)
- [Changelog](https://github.com/stafyniaksacha/vite-plugin-radar/blob/main/CHANGELOG.md)
- [Commits](stafyniaksacha/vite-plugin-radar@v0.9.6...v0.10.1)

Updates `vite-plugin-svgr` from 4.3.0 to 4.5.0
- [Release notes](https://github.com/pd4d10/vite-plugin-svgr/releases)
- [Commits](pd4d10/vite-plugin-svgr@v4.3.0...v4.5.0)

Updates `vite-tsconfig-paths` from 4.3.2 to 5.1.4
- [Release notes](https://github.com/aleclarson/vite-tsconfig-paths/releases)
- [Commits](aleclarson/vite-tsconfig-paths@v4.3.2...v5.1.4)

Updates `vitest` from 1.6.1 to 4.0.6
- [Release notes](https://github.com/vitest-dev/vitest/releases)
- [Commits](https://github.com/vitest-dev/vitest/commits/v4.0.6/packages/vitest)

Updates `vite-plugin-dts` from 3.9.1 to 4.5.4
- [Release notes](https://github.com/qmhc/vite-plugin-dts/releases)
- [Changelog](https://github.com/qmhc/unplugin-dts/blob/v4.5.4/CHANGELOG.md)
- [Commits](qmhc/unplugin-dts@v3.9.1...v4.5.4)

Updates `vite-plugin-lib-inject-css` from 1.3.0 to 2.2.2
- [Release notes](https://github.com/emosheeep/vite-plugin-lib-inject-css/releases)
- [Changelog](https://github.com/emosheeep/vite-plugin-lib-inject-css/blob/master/CHANGELOG.md)
- [Commits](https://github.com/emosheeep/vite-plugin-lib-inject-css/commits/[email protected])

Updates `@storybook/react-vite` from 8.5.8 to 10.0.3
- [Release notes](https://github.com/storybookjs/storybook/releases)
- [Changelog](https://github.com/storybookjs/storybook/blob/next/CHANGELOG.md)
- [Commits](https://github.com/storybookjs/storybook/commits/v10.0.3/code/frameworks/react-vite)

---
updated-dependencies:
- dependency-name: "@julr/vite-plugin-validate-env"
  dependency-version: 2.2.0
  dependency-type: direct:development
  update-type: version-update:semver-major
  dependency-group: vite
- dependency-name: "@vitejs/plugin-react-swc"
  dependency-version: 4.2.0
  dependency-type: direct:development
  update-type: version-update:semver-major
  dependency-group: vite
- dependency-name: "@vitest/coverage-v8"
  dependency-version: 4.0.6
  dependency-type: direct:development
  update-type: version-update:semver-major
  dependency-group: vite
- dependency-name: vite
  dependency-version: 7.1.12
  dependency-type: direct:development
  update-type: version-update:semver-major
  dependency-group: vite
- dependency-name: vite-plugin-checker
  dependency-version: 0.11.0
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: vite
- dependency-name: vite-plugin-compression2
  dependency-version: 2.3.1
  dependency-type: direct:development
  update-type: version-update:semver-major
  dependency-group: vite
- dependency-name: vite-plugin-radar
  dependency-version: 0.10.1
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: vite
- dependency-name: vite-plugin-svgr
  dependency-version: 4.5.0
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: vite
- dependency-name: vite-tsconfig-paths
  dependency-version: 5.1.4
  dependency-type: direct:development
  update-type: version-update:semver-major
  dependency-group: vite
- dependency-name: vitest
  dependency-version: 4.0.6
  dependency-type: direct:development
  update-type: version-update:semver-major
  dependency-group: vite
- dependency-name: vite-plugin-dts
  dependency-version: 4.5.4
  dependency-type: direct:development
  update-type: version-update:semver-major
  dependency-group: vite
- dependency-name: vite-plugin-lib-inject-css
  dependency-version: 2.2.2
  dependency-type: direct:development
  update-type: version-update:semver-major
  dependency-group: vite
- dependency-name: "@storybook/react-vite"
  dependency-version: 10.0.3
  dependency-type: direct:development
  update-type: version-update:semver-major
  dependency-group: vite
...

Signed-off-by: dependabot[bot] <[email protected]>
@dependabot dependabot bot added dependencies Pull requests that update a dependency file javascript Pull requests that update javascript code labels Nov 3, 2025
@changeset-bot
Copy link

changeset-bot bot commented Nov 3, 2025

⚠️ No Changeset found

Latest commit: 5d8afc3

Merging this PR will not cause a version bump for any packages. If these changes should not result in a new version, you're good to go. If these changes should result in a version bump, you need to add a changeset.

This PR includes no changesets

When changesets are added to this PR, you'll see the packages that this PR includes changesets for and the associated semver types

Click here to learn what changesets are, and how to add one.

Click here if you're a maintainer who wants to add a changeset to this PR

@dependabot @github
Copy link
Contributor Author

dependabot bot commented on behalf of github Nov 5, 2025

This pull request was built based on a group rule. Closing it will not ignore any of these versions in future pull requests.

To ignore these dependencies, configure ignore rules in dependabot.yml

@dependabot dependabot bot deleted the dependabot/npm_and_yarn/vite-1ac9aee4a9 branch November 5, 2025 03:09
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

dependencies Pull requests that update a dependency file javascript Pull requests that update javascript code

Projects

None yet

Development

Successfully merging this pull request may close these issues.

2 participants